home *** CD-ROM | disk | FTP | other *** search
/ You're the Director / You're The Director.iso / pc / pcf / ds.dir / 00242.ls < prev    next >
Encoding:
Text File  |  1995-10-08  |  586 b   |  27 lines

  1. on mouseUp
  2.   global prev, gSound
  3.   if prev > 0 then
  4.     set prev to 0
  5.     set the movieTime of sprite 48 to 0
  6.     set the movieRate of sprite 48 to 0
  7.     set the visible of sprite 48 to 0
  8.     set the visible of sprite 19 to 0
  9.     updateStage()
  10.     repeat with x = 13 to 18
  11.       set the visible of sprite x to 1
  12.     end repeat
  13.     repeat with i = 13 to 18
  14.       puppetSprite(i, 0)
  15.     end repeat
  16.     set the soundLevel to gSound
  17.     puppetSound("OPEN.AIF")
  18.     updateStage()
  19.     go(55)
  20.   else
  21.     repeat with i = 13 to 18
  22.       puppetSprite(i, 0)
  23.     end repeat
  24.     go(55)
  25.   end if
  26. end
  27.